:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --secondary-color: #2c3e50;
}

/* Navbar styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    /* z-index: 1000; */
}

.navbar-container {
    background-color: #fff;
    padding: 5px 50px 5px 50px;
    border-radius: 50px;
}

/*--------------------------------------------------------------
# Hero Section copied
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-bg.png") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#hero .container {
    padding-top: 110px;
}

@media (max-width: 992px) {
    #hero .container {
        padding-top: 98px;
    }
}

#hero h1 {
    margin: 0;
    font-size: 70px;
    font-weight: 700;
    line-height: 70px;
    color: #000;
    font-family: "DM Sans", sans-serif;
    padding-top: 100px;
    
}

#hero p {
    color: #000;
    /* margin-bottom: 10px 0 0 0; */
    font-size: 30px;
    padding-top: 50px;
    padding-bottom: 25px;
}

@media (min-width: 1600px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-height: 500px) {
    #hero {
        height: auto;
    }

    #hero .container {
        padding-top: 130px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-get-started {
    background-color: #2c3e50;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-learn-more {
    background-color: transparent;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-get-started:hover {
    background-color: #34495e;
}

.btn-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.z-design {
    align-items: right;
    padding-right: 0px;
}

.cube-image {
    width: 300px; 
    height: 300px; 
    object-fit: cover;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.title-services {
    font-size: 5.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    margin-bottom: 0px;
    opacity: 0.3;
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: white;
    padding-top: 20px;
    padding-bottom: 0px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/*------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/

.project-heading {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    -webkit-text-stroke: 1px #ccc;
    /* Outline stroke color */
    color: transparent;
    /* Make the text fill transparent to show only the outline */
}

.contact-us {
    color: darkgoldenrod;
    font-weight: bold;
    opacity: 0.5;
    font-size: 3.5rem;
}

.contact-details-heading {
    margin-bottom: 0px;
    opacity: 0.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 4rem 0;
    }
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
}

.btn-outline {
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 28px;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.section-title-bg {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.project-type-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: none;
    transition: all 0.3s ease;
}

.project-type-btn.active {
    background-color: rgb(100, 70, 0);
    color: #fff;
    border-color: rgb(100, 70, 0);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/

footer {
    background-color: var(--primary-color);
    color: white;
    background: url("../img/footer-bg.png") top center;
    background-size: cover;
    position: relative;
    padding: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ------------------------------------------------ */

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-text {
    margin-top: 20px;
    color: #fff;
    font-size: 1.2rem;
}

.spinner-grow {
    width: 3rem;
    height: 3rem;
}

.main-content {
    display: none;
}